for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
/**
* Class NotAnIntegerArgumentException.
*
* @author Sam As End <4sam21{at}gmail.com>
*/
module.exports = class NotAnIntegerArgumentException extends Error {
Error
constructor($argument) {
super(`Not an integer!, ${typeof $argument} given.`);
}
};